| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- import { useParams } from 'common'
- import {
- PageHeader,
- PageHeaderDescription,
- PageHeaderMeta,
- PageHeaderSummary,
- PageHeaderTitle,
- } from 'ui-patterns/PageHeader'
- import { SSOConfig } from '@/components/interfaces/Organization/SSO/SSOConfig'
- import { DefaultLayout } from '@/components/layouts/DefaultLayout'
- import OrganizationLayout from '@/components/layouts/OrganizationLayout'
- import { OrganizationSettingsLayout } from '@/components/layouts/ProjectLayout/OrganizationSettingsLayout'
- import { UnknownInterface } from '@/components/ui/UnknownInterface'
- import { useIsFeatureEnabled } from '@/hooks/misc/useIsFeatureEnabled'
- import type { NextPageWithLayout } from '@/types'
- const OrgSSO: NextPageWithLayout = () => {
- const { slug } = useParams()
- const showSsoSettings = useIsFeatureEnabled('organization:show_sso_settings')
- if (!showSsoSettings) {
- return <UnknownInterface urlBack={`/org/${slug}/general`} />
- }
- return (
- <>
- <PageHeader size="small">
- <PageHeaderMeta>
- <PageHeaderSummary>
- <PageHeaderTitle>Single Sign-On</PageHeaderTitle>
- <PageHeaderDescription>
- SAML SSO configuration and domain access controls
- </PageHeaderDescription>
- </PageHeaderSummary>
- </PageHeaderMeta>
- </PageHeader>
- <SSOConfig />
- </>
- )
- }
- OrgSSO.getLayout = (page) => (
- <DefaultLayout>
- <OrganizationLayout title="SSO">
- <OrganizationSettingsLayout>{page}</OrganizationSettingsLayout>
- </OrganizationLayout>
- </DefaultLayout>
- )
- export default OrgSSO
|